</> Code Challenge: Transform user input to lowercase

// JavaScript code​​​​​​‌‌​‌​‌‌​‌​‌‌‌‌​‌​​​​‌​​‌‌ below
// Write your answer here, and then test your code.
// Your job is to implement the transformCityToLowerCase() method.

// Change these boolean values to control whether you see 
// the expected answer and/or hints.
const showExpectedResult = false;
const showHints = false;

function transformCityToLowerCase(city) {
    return city.toLowerCase();
}
